home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / docs / help / arexxbegin.lha / arexx_for_beginners / articles_01-10 / Example3-2.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-06-01  |  219 b   |  13 lines

  1. /* Example3-2.rexx */
  2.  
  3. PARSE ARG Name','Age
  4.  
  5. IF Name = '' | Age = '' THEN DO
  6.  
  7.   SAY 'You should have put your name and age after the RX Example3-2'
  8.   EXIT
  9.  
  10. END
  11.  
  12. SAY 'Hi there' Name||'. You say you are' Age' years old.'
  13.